Namespace - LJCNetCommon
Parameters
textState - The current text state values.
copyright - The copyright array.
fileName - The HTML file name.
Returns
The added HTML beginning text.
Syntax
C# |
public String HTMLBegin(TextState textState, String[] copyright = null, String fileName = null)
|
Creates the HTML beginning up to and including head;.
Example
C# |
var textState = new TextState();
var hb = new HTMLBuilder(textState);
var copyright = new string[]
{
"Copyright (c) First Line",
"Second Line",
};
var fileName = "File.html";
hb.HTMLBegin(textState, copyright, fileName);
var result = hb.ToString();
|
Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.